home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 31 / Amiga Format CD31 (1998-09-02)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1998-10].iso / -seriously_amiga- / hardware / xfs / devs / mount.dev < prev    next >
Text File  |  1998-07-16  |  915b  |  32 lines

  1. /*
  2.  So long as you remember to put devd in L:, you
  3.  can use this file to mount the dev: handler thus:-
  4.  
  5.  mount dev: from mount.dev
  6.  
  7.  Once started, you can access an exec device as a file.
  8.  Access device and unit required as dev:<device>,<unit> eg:-
  9.  
  10.  copy dev:mfm.device,0 ram:temp
  11.  
  12.  will copy the whole of a pc disk in unit 0 to file ram:temp
  13.  
  14.  if you use the fd.device, it automatically determines the size
  15.  and layout of the disk, so if you insert an amiga disk and type
  16.  
  17.  copy dev:fd.device,0 ram:temp
  18.  
  19.  the file ram:temp will be an amiga disk image of 901120 bytes (880k),
  20.  but if you insert a spectrum disk and type the same command, the file
  21.  would be 819200 bytes (800k), and this still applies to single-sided,
  22.  40 track, 256 bytes per sector, 18 sector disks, which would result
  23.  in a disk image file of 184320 bytes (180k).
  24.  
  25. */
  26. DEV:
  27.  Handler   = L:devd
  28.  Stacksize = 8192
  29.  Priority  = 5
  30.  GlobVec   = -1
  31. #
  32.